home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / oew / ex_.ar_ / examples / planes / inter / TEMP.CXX < prev    next >
Encoding:
C/C++ Source or Header  |  1979-11-30  |  851 b   |  28 lines

  1. class WindowLIST_BUTTONS : public Window
  2. {
  3. protected:
  4.     PushButton aPushButtonNEW_BUTTON;
  5.     PushButton aPushButtonEDIT_BUTTON;
  6.     PushButton aPushButton3;
  7.     PushButton aPushButton4;
  8.     PushButton aPushButton5;
  9.     PushButton aPushButton6;
  10.     Window aWindow1;
  11. public:
  12.     WindowLIST_BUTTONS( Window * pParent, ResId & rResId, BOOL bFreeRes = TRUE );
  13. };
  14.  
  15.  
  16. WindowLIST_BUTTONS::WindowLIST_BUTTONS( Window * pParent, ResId & rResId, BOOL bFreeRes )
  17.     : Window( pParent, rResId ),
  18.     aPushButtonNEW_BUTTON( this, ResId( NEW_BUTTON ) ),
  19.     aPushButtonEDIT_BUTTON( this, ResId( EDIT_BUTTON ) ),
  20.     aPushButton3( this, ResId( 3 ) ),
  21.     aPushButton4( this, ResId( 4 ) ),
  22.     aPushButton5( this, ResId( 5 ) ),
  23.     aPushButton6( this, ResId( 6 ) ),
  24.     aWindow1( this, ResId( 1 ) )
  25. {
  26.     if( bFreeRes ) FreeResource();
  27. }
  28.